Commerce Stream Practicals

Std 12th IT Subject (Commerce Stream)

SOP 5: Use of Audio on web pages using HTML5

Source Code: Audio.html

<!DOCTYPE html>
<html>
<head>
    <title>Audio with controls</title>
</head>
<body>
    <h1>Audio With Single Source</h1>
    <audio loop="-1" autoplay controls>
        <source src="Song.mp3" type="audio/mp3">
    </audio>
</body>
</html>
    

Source Code: Audio1.html

<!DOCTYPE html>
<html>
<head>
    <title>Audio with controls</title>
</head>
<body>
    <h1>Audio With Multiple Source</h1>
    list of Audio files
    <ol>
        <li>Song.mp3</li>
        <li>Song.ogg</li>
        <li>Song.wav</li>
    </ol>
    <audio autoplay controls>
        <source src="Song.mp3" type="audio/mp3">
        <source src="Song.ogg" type="audio/ogg">
        <source src="Song.wav" type="audio/wav">
        Your computer doesn't support audio file
    </audio>
</body>
</html>

Live Preview